Calculates the number of characters that would result from decoding a specified range of elements in a byte array.
Public Overloads Overrides Function GetCharCount( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
) As Integer
Dim instance As ImapUTF7
Dim bytes() As Byte
Dim index As Integer
Dim count As Integer
Dim value As Integer
value = instance.GetCharCount(bytes, index, count)
public override int GetCharCount(
byte[] ,
int ,
int
)
public: int GetCharCount(
byte[]* ,
int ,
int
) override
public:
int GetCharCount(
array<byte>^ ,
int ,
int
) override
Parameters
- bytes
- The byte array to decode.
- index
- The index of the first byte in bytes to decode.
- count
- The number of bytes to decode.
Return Value
The number of characters that would result from decoding the specified range of elements in bytes.